home *** CD-ROM | disk | FTP | other *** search
- #ifndef RELEASE
- #ifndef __TRACE_H
- // Avoid include redundancy
- #define __TRACE_H
-
- // Copyright (c) 1994, University of Kansas, All Rights Reserved
- //
- // Include File: trace.h
- // Purpose: Provide non debugging code tracing.
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 01-25-94 recreated
- // previously deleted since believed causing
- // exe errors. real bug found, now
- // reimplementing.
-
- #include"tcapture.h"
-
- #define trace(message) {\
- if(::TC != NULL && c_trace) {\
- cout << __FILE__ << ':' << __LINE__ << ": " << message <<\
- '\n';\
- }\
- }
-
- #endif // __TRACE_H
- #endif // RELEASE